home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
newsgroups
/
misc.20020314-20021006
/
000224_fdc@columbia.edu_Thu Jul 18 20:16:08 EDT 2002.msg
< prev
next >
Wrap
Text File
|
2002-10-06
|
2KB
|
44 lines
Article: 13536 of comp.protocols.kermit.misc
Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
From: fdc@columbia.edu (Frank da Cruz)
Newsgroups: comp.protocols.kermit.misc
Subject: Re: telnet
Date: 18 Jul 2002 20:15:39 -0400
Organization: Columbia University
Lines: 27
Message-ID: <ah7lnb$hpk$1@watsol.cc.columbia.edu>
References: <44022a60.0207181549.2e1207a9@posting.google.com>
NNTP-Posting-Host: watsol.cc.columbia.edu
X-Trace: newsmaster.cc.columbia.edu 1027037741 25861 128.59.39.139 (19 Jul 2002 00:15:41 GMT)
X-Complaints-To: postmaster@columbia.edu
NNTP-Posting-Date: 19 Jul 2002 00:15:41 GMT
Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13536
In article <44022a60.0207181549.2e1207a9@posting.google.com>,
tgilber1 <tgilber1@netscape.net> wrote:
: I have alarms messages coming from remote units that only use telnet
: protocol. Is there anyway I could use c-kermit? In the c-kermit
: manual I just purchased, it states that c-kermit is not a telnet
: server (c-kermit 6.0).
:
Not in the sense of telnetd. But it can accept incoming telnet connections:
set host * 23
tells it to wait for an incoming connection. You can also have it wait on
any other port:
set host * 3000 /telnet
The /telnet switch should be included when specifying a non-Telnet port,
but you still want it to do Telnet protocol negotiations.
Once a connection arrives, you can use the regular scripting techniques
described in the manual and here:
http://www.columbia.edu/kermit/ckscripts.html
to process the messages.
- Frank